home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / df.dir / 00059.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  389 b   |  25 lines

  1. on mouseDown
  2.   global letgo, movielist
  3.   if the doubleClick then
  4.     if count(movielist) >= 24 then
  5.       exit
  6.     end if
  7.     set the ink of sprite 16 to 4
  8.     updateStage()
  9.     set yu to the clickOn
  10.     addbarC(yu)
  11.     updateStage()
  12.     exit
  13.   end if
  14.   set letgo to 2
  15. end
  16.  
  17. on mouseUp
  18.   global reset, letgo
  19.   if the doubleClick then
  20.     exit
  21.   end if
  22.   set letgo to 0
  23.   set reset to 1
  24. end
  25.